home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / ghost / gs403src_gs.lha / gs4.03 / gdevht.c < prev    next >
C/C++ Source or Header  |  1996-09-17  |  7KB  |  211 lines

  1. /* Copyright (C) 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevht.c */
  20. /* Halftoning device implementation */
  21. #include "gx.h"
  22. #include "gserrors.h"
  23. #include "gxdevice.h"
  24. #include "gdevht.h"
  25. #include "gxdcolor.h"
  26. #include "gxdcconv.h"
  27. #include "gxdither.h"
  28.  
  29. /* The device procedures */
  30. private dev_proc_open_device(ht_open);
  31. private dev_proc_map_rgb_color(ht_map_rgb_color);
  32. private dev_proc_map_color_rgb(ht_map_color_rgb);
  33. private dev_proc_fill_rectangle(ht_fill_rectangle);
  34. private dev_proc_map_cmyk_color(ht_map_cmyk_color);
  35. private dev_proc_map_rgb_alpha_color(ht_map_rgb_alpha_color);
  36. private const gx_device_ht far_data gs_ht_device =
  37. {    std_device_dci_body(gx_device_ht, 0, "halftoner",
  38.                 0, 0, 1, 1,
  39.                 1, 8, 255, 0, 0, 0),
  40.       {    ht_open,
  41.         gx_forward_get_initial_matrix,
  42.         gx_forward_sync_output,
  43.         gx_forward_output_page,
  44.         gx_default_close_device,
  45.         ht_map_rgb_color,
  46.         ht_map_color_rgb,
  47.         ht_fill_rectangle,
  48.         gx_default_tile_rectangle,
  49.         gx_default_copy_mono,
  50.         gx_default_copy_color,
  51.         gx_default_draw_line,
  52.         gx_default_get_bits,
  53.         gx_forward_get_params,
  54.         gx_forward_put_params,
  55.         ht_map_cmyk_color,
  56.         gx_forward_get_xfont_procs,
  57.         gx_forward_get_xfont_device,
  58.         ht_map_rgb_alpha_color,
  59.         gx_forward_get_page_device,
  60.         gx_forward_get_alpha_bits,
  61.         gx_default_copy_alpha,
  62.         gx_forward_get_band,
  63.         gx_default_copy_rop,
  64.         gx_default_fill_path,
  65.         gx_default_stroke_path,
  66.         gx_default_fill_mask,
  67.         gx_default_fill_trapezoid,
  68.         gx_default_fill_parallelogram,
  69.         gx_default_fill_triangle,
  70.         gx_default_draw_thin_line,
  71.         gx_default_begin_image,
  72.         gx_default_image_data,
  73.         gx_default_end_image,
  74.         gx_default_strip_tile_rectangle,
  75.         gx_default_strip_copy_rop
  76.       }
  77. };
  78.  
  79. /*
  80.  * Define the packing of two target colors and a halftone level into
  81.  * a gx_color_index.  Since C doesn't let us cast between a structure
  82.  * and a scalar, we have to use explicit shifting and masking.
  83.  */
  84. #define cx_bits (sizeof(gx_color_index) * 8)
  85. #define cx_color_mask ((1 << ht_target_max_depth) - 1)
  86. #define cx_color0(color) ((color) >> (cx_bits - ht_target_max_depth))
  87. #define cx_color1(color) (((color) >> (ht_level_depth)) & cx_color_mask)
  88. #define cx_level(color) ((color) & ((1 << ht_level_depth) - 1))
  89. #define cx_values(c0, c1, lev)\
  90.   ( ((((c0) << ht_target_max_depth) + (c1)) << ht_level_depth) + (lev) )
  91.  
  92. /* Open the device.  Right now we just make some error checks. */
  93. private int
  94. ht_open(gx_device *dev)
  95. {    if ( htdev->target == 0 ||
  96.          htdev->target->color_info.depth > ht_target_max_depth
  97.        )
  98.       return_error(gs_error_rangecheck);
  99.     htdev->phase.x = imod(-htdev->ht_phase.x, htdev->dev_ht->lcm_width);
  100.     htdev->phase.y = imod(-htdev->ht_phase.y, htdev->dev_ht->lcm_height);
  101.     return 0;
  102. }
  103.  
  104. /* Map from RGB or CMYK colors to the packed representation. */
  105. private gx_color_index
  106. ht_finish_map_color(int code, const gx_device_color *pdevc)
  107. {    if ( code < 0 )
  108.       return gx_no_color_index;
  109.     if ( pdevc->type == &gx_dc_pure )
  110.       return cx_values(pdevc->colors.pure, 0, 0);
  111.     if ( pdevc->type == &gx_dc_ht_binary )
  112.       return cx_values(pdevc->colors.binary.color[0],
  113.                pdevc->colors.binary.color[1],
  114.                pdevc->colors.binary.b_level);
  115.     lprintf("bad type in ht color mapping!");
  116.     return gx_no_color_index;
  117. }
  118. private gx_color_index
  119. ht_map_rgb_color(gx_device *dev, gx_color_value r, gx_color_value g,
  120.   gx_color_value b)
  121. {    return ht_map_rgb_alpha_color(dev, r, g, b, gx_max_color_value);
  122. }
  123. gx_color_index
  124. ht_map_cmyk_color(gx_device *dev, gx_color_value c, gx_color_value m,
  125.   gx_color_value y, gx_color_value k)
  126. {    gx_device_color devc;
  127.     frac fc = cv2frac(k);
  128.     frac fk = cv2frac(k);
  129.     int code =
  130.       (c == m & m == y ?
  131.        gx_render_device_gray(color_cmyk_to_gray(fc, fc, fc, fk, NULL),
  132.                  gx_max_color_value,
  133.                  &devc, htdev->target, htdev->dev_ht,
  134.                  &htdev->ht_phase) :
  135.        gx_render_device_color(fc, cv2frac(m), cv2frac(y),
  136.                   fk, false, gx_max_color_value,
  137.                   &devc, htdev->target, htdev->dev_ht,
  138.                   &htdev->ht_phase));
  139.     return ht_finish_map_color(code, &devc);
  140. }
  141. gx_color_index
  142. ht_map_rgb_alpha_color(gx_device *dev, gx_color_value r,
  143.   gx_color_value g, gx_color_value b, gx_color_value alpha)
  144. {    gx_device_color devc;
  145.     int code =
  146.       (r == g & g == b ?
  147.        gx_render_device_gray(cv2frac(r), alpha,
  148.                  &devc, htdev->target, htdev->dev_ht,
  149.                  &htdev->ht_phase) :
  150.        gx_render_device_color(cv2frac(r), cv2frac(g), cv2frac(b),
  151.                   frac_0, false, alpha,
  152.                   &devc, htdev->target, htdev->dev_ht,
  153.                   &htdev->ht_phase));
  154.     return ht_finish_map_color(code, &devc);
  155. }
  156.  
  157. /* Map back to an RGB color. */
  158. private int
  159. ht_map_color_rgb(gx_device *dev, gx_color_index color,
  160.   gx_color_value prgb[3])
  161. {    gx_color_index color0 = cx_color0(color);
  162.     uint level = cx_level(color);
  163.     gx_device *tdev = htdev->target;
  164.     dev_proc_map_color_rgb((*map)) = dev_proc(tdev, map_color_rgb);
  165.  
  166.     if ( level == 0 )
  167.       return (*map)(tdev, color0, prgb);
  168.     { gx_color_index color1 = cx_color1(color);
  169.       gx_color_value rgb0[3], rgb1[3];
  170.       uint num_levels = htdev->dev_ht->order.num_levels;
  171.       int i;
  172.  
  173.       (*map)(tdev, color0, rgb0);
  174.       (*map)(tdev, color1, rgb1);
  175.       for ( i = 0; i < 3; ++i )
  176.         prgb[i] = rgb0[i] +
  177.           (rgb1[i] - rgb0[i]) * (ulong)level / num_levels;
  178.       return 0;
  179.     }
  180. }
  181.  
  182. /* Fill a rectangle by tiling with a halftone. */
  183. private int
  184. ht_fill_rectangle(gx_device *dev, int x, int y, int w, int h,
  185.   gx_color_index color)
  186. {    gx_color_index color0 = cx_color0(color);
  187.     uint level = cx_level(color);
  188.     gx_device *tdev = htdev->target;
  189.  
  190.     if ( level == 0 )
  191.       return (*dev_proc(tdev, fill_rectangle))
  192.         (tdev, x, y, w, h, color0);
  193.     { gx_color_index color1 = cx_color1(color);
  194.       const gx_ht_order *porder = &htdev->dev_ht->order;
  195.       gx_ht_cache *pcache = porder->cache;
  196.       gx_ht_tile *tile;
  197.  
  198.       /* Ensure that the tile cache is current. */
  199.       if ( pcache->order.bits != porder->bits )
  200.         gx_ht_init_cache(pcache, porder);
  201.       /* Ensure that the tile we want is cached. */
  202.       tile = gx_render_ht(pcache, level);
  203.       if ( tile == 0 )
  204.         return_error(gs_error_Fatal);
  205.       /* Fill the rectangle with the tile. */
  206.       return (*dev_proc(tdev, tile_rectangle))
  207.         (tdev, &tile->tile, x, y, w, h, color0, color1,
  208.          htdev->phase.x, htdev->phase.y);
  209.     }
  210. }
  211.